Assignment #27 Variables Can Only Hold Values 2

Code

    
    /// Name: Lacey Reese 
    /// Period: 5
    /// Program Name: VariablesCanOnlyHoldValues2
    /// File Name: VariablesCanOnlyHoldValues2.java
    /// Date Finished 10/12/2015
    
    // This one is the broken one
    
import java.util.Scanner;
  
  public class VariablesOnlyHoldValues2
  {
      public static void main( String[] args )
      {
 
         Scanner keyboard = new Scanner(System.in);
         double price = 0, salesTax, total;
 
        salesTax = price * 0.0825;
        total = price + salesTax;

         System.out.print( "How much is the purchase price? " );
         price = keyboard.nextDouble();
 
         System.out.println( "Item price:\t" + price );
         System.out.println( "Sales tax:\t" + salesTax );
         System.out.println( "Total cost:\t" + total );
      }
}
    

Picture of the output

// Im going to try to fix this program Assignment 27